home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / VIEWERS / PWBROWSE / ABOUT.FRM next >
Text File  |  1993-09-21  |  3KB  |  89 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "About Version Browser"
  6.    ClientHeight    =   3105
  7.    ClientLeft      =   4335
  8.    ClientTop       =   2790
  9.    ClientWidth     =   3825
  10.    Height          =   3570
  11.    Left            =   4245
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   3105
  14.    ScaleWidth      =   3825
  15.    Top             =   2415
  16.    Width           =   4005
  17.    Begin CommandButton cbOK 
  18.       Caption         =   "OK"
  19.       Height          =   375
  20.       Left            =   2880
  21.       TabIndex        =   1
  22.       Top             =   2640
  23.       Width           =   735
  24.    End
  25.    Begin PictureBox pbWinMag 
  26.       Height          =   855
  27.       Left            =   120
  28.       Picture         =   ABOUT.FRX:0000
  29.       ScaleHeight     =   825
  30.       ScaleWidth      =   2865
  31.       TabIndex        =   0
  32.       Top             =   120
  33.       Width           =   2895
  34.    End
  35.    Begin Label Label3 
  36.       BackStyle       =   0  'Transparent
  37.       Caption         =   "Written by Karen Kenworthy"
  38.       Height          =   255
  39.       Left            =   120
  40.       TabIndex        =   4
  41.       Top             =   2760
  42.       Width           =   2535
  43.    End
  44.    Begin Label Label4 
  45.       BackStyle       =   0  'Transparent
  46.       Caption         =   "Described in December, 1993; January 1994 and February 1994 ""Power Windows"" columns."
  47.       Height          =   615
  48.       Left            =   120
  49.       TabIndex        =   5
  50.       Top             =   2040
  51.       Width           =   3135
  52.    End
  53.    Begin Label Label2 
  54.       BackStyle       =   0  'Transparent
  55.       Caption         =   "Copyright 1993 WINDOWS Magazine"
  56.       Height          =   255
  57.       Left            =   120
  58.       TabIndex        =   3
  59.       Top             =   1680
  60.       Width           =   3495
  61.    End
  62.    Begin Label Label1 
  63.       BackStyle       =   0  'Transparent
  64.       Caption         =   "Version Browser 1.0"
  65.       FontBold        =   -1  'True
  66.       FontItalic      =   0   'False
  67.       FontName        =   "MS Sans Serif"
  68.       FontSize        =   18
  69.       FontStrikethru  =   0   'False
  70.       FontUnderline   =   0   'False
  71.       Height          =   375
  72.       Left            =   120
  73.       TabIndex        =   2
  74.       Top             =   1080
  75.       Width           =   3615
  76.    End
  77. End
  78.  
  79. Sub cbOK_Click ()
  80.     Unload frmAbout
  81. End Sub
  82.  
  83. Sub Form_Load ()
  84.     ' center the About box on the screen
  85.     frmAbout.Left = (Screen.Width / 2) - (frmAbout.ScaleWidth / 2)
  86.     frmAbout.Top = (Screen.Height / 2) - (frmAbout.ScaleHeight / 2)
  87. End Sub
  88.  
  89.